/* Global Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  a {
    text-decoration: none;
    color: #fff;
    background-color: #74312b;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  a:hover {
    background-color: #8b8233;
  }
  
  /* Header Section */
  
  header {
    text-align: center;
    background-color: #8B3A33;
    padding: 60px 0;
    color: #fff;
  }
  
  header h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  /* About Section */
  
  #about {
    background-color: #fff;
    padding: 40px 0;
  }
  
  #about h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  #about p {
    margin-bottom: 10px;
  }
  
  #about ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  /* Features Section */
  
  #features {
    background-color: #f2f2f2;
    padding: 40px 0;

  }
  
  #features h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .feature {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
  }
  
  .feature img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    padding-right: 30px;
  }
  
  .feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-right: 30px;
  }
  
  /* Join Section */
  
  #join {
    text-align: center;
    background-color: #8B3A33;
    padding: 60px 0;
    color: #fff;
  }
  
  #join h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  #join p {
    margin-bottom: 20px;
  }
  
  /* Footer Section */
  
  footer {
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Media Queries */
  
  @media (max-width: 768px) {
    header h1 {
      font-size: 24px;
    }
  
    .feature img {
      max-width: 200px;
    }
  }
  
  @media (max-width: 576px) {
    header h1 {
      font-size: 20px;
    }
  
    .feature img {
      max-width: 150px;
    }
  
    #join h2 {
      font-size: 28px;
    }
  }
  